h1{
  padding-bottom: 35px;
  padding-top: 15px;
}

#contactFormTitle{
  font-size: 40px;
}

/* =====================
   THEME COLORS
===================== */
:root {
  --header-bg: linear-gradient(90deg, #6a7519, rgb(0, 0, 0), #802525);
  --button-bg: #4f46e5;
  --button-hover: #4338ca;
  --section-bg: #ffffff;
  --text-color: #222;
  --border-color: #d1d5db;
}

/* DARK MODE COLORS */
.dark {
  --header-bg: #1f2937;
  --button-bg: #4f46e5;
  --button-hover: #4338ca;
  --section-bg: #111827;
  --text-color: #ffffff;
  --border-color: #374151;
  background-color: #222;
}

/* =====================
   GLOBAL STYLES
===================== */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: var(--text-color);
  transition: 0.3s;
}

/* =====================
   HEADER
===================== */
header {
  background: var(--header-bg);
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 0 0 25px 25px;
}

header h1 {
  margin: 0;
  font-size: 32px;
}

header p {
  margin: 5px 0 15px;
}

/* =====================
   NAVIGATION
===================== */
#nav-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#nav-menu a {
  color: white;
  text-decoration: none;
  text-decoration: underline;
}

#nav-menu a:hover {
  text-decoration: underline;
   box-shadow: 0 2px 5px rgb(255, 255, 255);
  transform: rotateX(3deg);
  transition-duration: 0.5s;
  color: yellow;
  text-decoration:wavy;
}

/* =====================
   CONTAINER
===================== */
.container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
}

/* =====================
   CONTACT FORM
===================== */
#contact {
  background: var(--section-bg);
  padding: 25px;
  border-radius: 10px;
}

#contact h2 {
  margin-top: 0;
}

#contact p {
  margin-bottom: 20px;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  outline: none;
  font-size: 16px;
  background: var(--section-bg);
  color: var(--text-color);
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: #9ca3af;
}

/* =====================
   BUTTONS
===================== */
#contact button {
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  background: var(--button-bg);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  margin-right: 10px;
}

#contact button:hover {
  background: var(--button-hover);
}

/* =====================
   FOOTER
===================== */
footer {
  margin-top: 40px;
  padding: 15px;
  text-align: center;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
}

/* =====================
   WHATSAPP FLOAT
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  #nav-menu {
    flex-direction: column;
  }

  header h1 {
    font-size: 24px;
  }

  #contact input,
  #contact textarea,
  #contact button {
    font-size: 14px;
  }

  #contact button {
    width: 100%;
    margin-bottom: 10px;
  }
}
